Computing (FOLDOC) dictionary
Jump to user comments
programming A
loop of code that executes without releasing
Consider the following pointless
BASIC loop that counts
upward indefinitely
10 i = i + 1
20 GOTO 10
Run on a single-user system such as
MS-DOS this will not
operating system such as
Windows 3, the system would appear
to freeze.
the program and continue to run other programs.
(1999-05-06)